home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / penguin.swf / scripts / DefineSprite_287 / frame_74 / DoAction.as
Encoding:
Text File  |  2007-06-26  |  171 b   |  16 lines

  1. var i = Math.random();
  2. if(i < 0.33)
  3. {
  4.    gotoAndStop("s2");
  5.    play();
  6. }
  7. else if(i < 0.66)
  8. {
  9.    gotoAndStop("s3");
  10.    play();
  11. }
  12. else
  13. {
  14.    gotoAndPlay(1);
  15. }
  16.